home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000339_news@columbia.edu _Fri Dec 10 16:34:52 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA00351
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 10 Dec 1999 16:34:52 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id QAA01088
  7.     for kermit.misc@watsun.cc.columbia.edu; Fri, 10 Dec 1999 16:11:13 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: generate umlaut over telnet?
  11. Date: 10 Dec 1999 21:11:12 GMT
  12. Organization: Columbia University
  13. Message-ID: <82rq9g$11t$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <1999Dec10.155004.1@eisner>,
  17. Bob Koehler <koehler@eisner.decus.org> wrote:
  18. : In article <82r4ia$a8b$1@newsmaster.cc.columbia.edu>,
  19. : fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  20. : > In article <1999Dec10.091814.1@eisner>,
  21. : >
  22. : > It depends on your Telnet client.  I can speak for C-Kermit; if you tell
  23. : > it to "set command bytesize 8" and "set terminal bytesize 8", this gives
  24. : > a clear 8-bit path between your keyboard and screen and the remote host,
  25. : > and you should be able to see your Umlaute.  (In C-Kermit 7.0:
  26. : TELNET is defined as a 7-bit protocol.  Is Kermit encoding to get around
  27. : this, or just assuming that the 8 bits will go across correctly?  I have
  28. : no control over the TELNET server code, it appears to be Multinet
  29. : 4.0(118), nor over the equipment in between.
  30. Most telnet servers allow 8 bits.  Most clients use 7 by default, and some
  31. of them give no option to use 8.  Kermit uses 7 by default but lets you use
  32. eight, and if the server supports 8-bit data, you're in business.  If it
  33. doesn't, you can force the connection into binary mode, which by definition
  34. allows 8-bit data.  But I haven't yet encountered a situation where this is
  35. necessary.
  36.  
  37. It works, really; I use 8-bit Telnet connections to work with text in
  38. Spanish, German, even Russian all the time -- with a variety of hosts on
  39. the far end -- VMS, UNIX, DG, ...  Kermit knows Telnet protocol and
  40. escaping rules.
  41.  
  42. Another choice, if you don't trust Telnet, is Rlogin.  C-Kermit 7.0 is also
  43. an Rlogin client.  But that requires privileges because in VMS and UNIX,
  44. the Rlogin socket is privileged.
  45.  
  46. - Frank